home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 December / Chip_2001-12_cd1.bin / zkuste / tuning / download / xteq / setup.exe / {app} / plugins / XQ Yahoo Messenger 4.xpl < prev    next >
Text File  |  2001-05-22  |  2KB  |  44 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="1"
  3. "COUNT"="2"
  4. "UIPATH"="Internet\Instant Messaging\Yahoo Messenger"
  5. "NAME"="Window Title"
  6. "VERSION"="1.21"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Main Window"
  9. "TEXT 2"="IM Windows"
  10. "DESCRIPTION 1"="You can change the title of the Yahoo! Messenger windows here."
  11. "DESCRIPTION 2"="The main window contains your friend list, and the IM window is what appears while you have a conversation."
  12. "DESCRIPTION 3"="NOTE #1: If you have Yahoo! Messenger open at the moment, you will need to close it so that the changes can take effect."
  13. "DESCRIPTION 4"="NOTE #2: IM Windows is ignored by Yahoo! Messenger 3.5x, and both options are ignored under Yahoo! Messenger 4.x"
  14. "DESCRIPTION 5"="Yahoo! Messenger may be obtained at http://messenger.yahoo.com/."
  15. "AUTHOR"="Neil R. Turner (totalxs@hotmail.com) for Xteq Systems"
  16. "CONTACTURL"="http://www.neilrt.cwc.net/"
  17. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  18. "COMMENT 1"="Fed up with Yahoo!? Try http://dmoz.org/."
  19.  
  20. sP="HKCR\TypeLib\{F0012D80-989C-11D3-B7C5-0090271D5CA7}\3.0\HELPDIR\@"
  21.  
  22. Sub Plugin_Initialize
  23.  s=RegReadValue(sP)
  24.  t=IniReadValue(s & "\cobrand.ini","APP TITLE","Caption")
  25.  Call SetUIElement(1,t)
  26.  t=IniReadValue(s & "\cobrand.ini","IM TITLE","Caption")
  27.  Call SetUIElement(2,t)
  28. End Sub
  29.  
  30. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  31.  t=GetUIElement(1)
  32.  s=RegReadValue(sP)
  33.  Call IniWriteValue(s & "\cobrand.ini","APP TITLE","Caption",t)
  34.  t=GetUIElement(2)
  35.  Call IniWriteValue(s & "\cobrand.ini","IM TITLE","Caption",t)
  36. End Sub
  37.  
  38.  
  39. Sub Plugin_Terminate 
  40. End Sub
  41.  
  42.  
  43.  
  44.